home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2005 July / Macworld CD 17.05.iso / Data / Main.dxr / 00028_Installer handler.ls < prev    next >
Encoding:
Text File  |  2000-02-28  |  341 b   |  18 lines

  1. property appPath, generalPath
  2.  
  3. on new me
  4.   return me
  5. end
  6.  
  7. on getPropertyDescriptionList me
  8.   description = [:]
  9.   addProp(description, #appPath, [#default: "none", #format: #string, #comment: "Pathname of the app the launch:"])
  10.   return description
  11. end
  12.  
  13. on mouseUp me
  14.   if appPath <> "none" then
  15.     open(the pathName & appPath)
  16.   end if
  17. end
  18.